Lender Price API
iFrame Integration Options / Generic LOS Integration / LOS Authentication
In This Topic
    LOS Authentication
    In This Topic

    This topic provides information necessary for LOS authentication by Lender Price.

    Lender Price Variables

    The following variables/variable names are provided by Lender Price to be implemented by the Required LOS APIs for iFrame integration:

    LOS Variables

    The following variables/variable names should be implemented by the LOS when developing their Required LOS APIs for iFrame integration:

    Environment Variables

    The following environment variables are to be used:

    Authentication Example

    Sample Authentication Request
    Copy Code
    curl --location 'https://[lp_auth_api_url]/oauth/token' \
    --header 'Authorization: Basic [lp_basic_auth_key]' \
    --form 'username="[lp_username]"' \
    --form 'password="[lp_password]"' \
    --form 'grant_type="password"' \
    --form 'client_id="EXT_LOS"' \
    --form 'ext_loan_id="[ext_loan_id]"' \
    --form 'ext_user_id="[ext_user_id]"'
    –form ‘context’=string
    Sample Authentication Response
    Copy Code
    {
        “access_token”: string;
        “token_type”: “bearer”;
        “refresh_token”: string;
        “tinyAccessToken”: string;
        “Context”: string;
    }